home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
listings
/
v_10_05
/
1005012a
< prev
next >
Wrap
Text File
|
1992-03-04
|
137b
|
6 lines
#define atoi(s) (int)_Stoul(s, 0, 10)
#define atol(s) (long)_Stoul(s, 0, 10)
#define strtoul(s, end, base) _Stoul(s, end, base)